From: Keir Fraser Date: Tue, 8 Jan 2008 16:20:04 +0000 (+0000) Subject: hvm: hpet: Fix overflow when converting to nanoseconds. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14445^2~65 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=73ee2f2e11fcdc27aae4f8caa72d240c4c9ed5ac;p=xen.git hvm: hpet: Fix overflow when converting to nanoseconds. Currently in hpet_tick_to_ns, the approach is multiplying first, which easily causes overflow when tick is quite large. The patch cannot handle arbitratry large ticks duo to the precision requirement and 64bit's value range. But by optimize the equation, a larger ticks than current code can be supported. Also an overflow check is added before the calculation. From: Haitao Shan Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/hvm/hpet.c b/xen/arch/x86/hvm/hpet.c index 603ffe8915..14f525893f 100644 --- a/xen/arch/x86/hvm/hpet.c +++ b/xen/arch/x86/hvm/hpet.c @@ -71,8 +71,9 @@ #define HPET_TN_INT_ROUTE_CAP_MASK (0xffffffffULL \ << HPET_TN_INT_ROUTE_CAP_SHIFT) -#define hpet_tick_to_ns(h, tick) ((s_time_t)(tick)* \ - (S_TO_NS*TSC_PER_HPET_TICK)/h->tsc_freq) +#define hpet_tick_to_ns(h, tick) \ + ((s_time_t)((((tick) > (h)->hpet_to_ns_limit) ? \ + ~0ULL : (tick) * (h)->hpet_to_ns_scale) >> 10)) #define timer_config(h, n) (h->hpet.timers[n].config) #define timer_is_periodic(h, n) (timer_config(h, n) & HPET_TN_PERIODIC) @@ -537,6 +538,9 @@ void hpet_init(struct vcpu *v) h->vcpu = v; h->tsc_freq = ticks_per_sec(v); + h->hpet_to_ns_scale = ((S_TO_NS * TSC_PER_HPET_TICK) << 10) / h->tsc_freq; + h->hpet_to_ns_limit = (~0ULL >> 1) / h->hpet_to_ns_scale; + /* 64-bit main counter; 3 timers supported; LegacyReplacementRoute. */ h->hpet.capability = 0x8086A201ULL; diff --git a/xen/include/asm-x86/hvm/vpt.h b/xen/include/asm-x86/hvm/vpt.h index df54f66268..b7176e89b1 100644 --- a/xen/include/asm-x86/hvm/vpt.h +++ b/xen/include/asm-x86/hvm/vpt.h @@ -58,6 +58,8 @@ typedef struct HPETState { struct hpet_registers hpet; struct vcpu *vcpu; uint64_t tsc_freq; + uint64_t hpet_to_ns_scale; /* hpet ticks to ns (multiplied by 2^10) */ + uint64_t hpet_to_ns_limit; /* max hpet ticks convertable to ns */ uint64_t mc_offset; struct timer timers[HPET_TIMER_NUM]; struct HPET_timer_fn_info timer_fn_info[HPET_TIMER_NUM];